home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / QuickDraw3D 1.6 SDK / Mac SampleCode New for 1.6 / ViewerCallbackSample / Headers / Viewer_System.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-18  |  542 b   |  45 lines  |  [TEXT/CWIE]

  1. /*  
  2.  *    Viewer_System.h
  3.  *
  4.  *    QuickDraw 3D 1.6 Sample
  5.  *    Robert Dierkes
  6.  *
  7.  *     12/22/98    RDD        Created.
  8.  */
  9.  
  10. #ifndef _HViewer_System
  11. #define _HViewer_System
  12.  
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17.  
  18.  
  19. /*------------------*/
  20. /*      Constants        */
  21. /*------------------*/
  22.  
  23.  
  24. /*------------------*/
  25. /*        Macros        */
  26. /*------------------*/
  27. #define    kQD3DGestaltVersion_1_6_0    0x00010600
  28.  
  29.  
  30. TQ3Boolean QuickDraw3D_Initialize(
  31.     void);
  32.  
  33. TQ3Boolean QuickDraw3D_Exit(
  34.     void);
  35.  
  36. void System_Beep (
  37.     void);
  38.  
  39.  
  40. #ifdef __cplusplus
  41. }
  42. #endif
  43.  
  44. #endif /* _HViewer_System */
  45.